home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJ111M2.ZIP / include / io.h < prev    next >
C/C++ Source or Header  |  1994-01-08  |  249b  |  17 lines

  1. #ifndef _IO_H_
  2. #define _IO_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. int setmode(int handle, int mode);
  8. int lock(int fd, long offset, long length);
  9. int unlock(int fd, long offset, long length);
  10.  
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14.  
  15. #endif
  16.  
  17.